github.com/go-faster/jx.Writer.twoBytes (method)

11 uses

	github.com/go-faster/jx (current package)
		w.go#L75: func (w *Writer) twoBytes(c1, c2 byte) bool {
		w_str.go#L77: 			fail = fail || w.twoBytes('\\', b)
		w_str.go#L79: 			fail = fail || w.twoBytes('\\', 'n')
		w_str.go#L81: 			fail = fail || w.twoBytes('\\', 'r')
		w_str.go#L83: 			fail = fail || w.twoBytes('\\', 't')
		w_str.go#L90: 			fail = fail || w.rawStr(`\u00`) || w.twoBytes(hexChars[b>>4], hexChars[b&0xF])
		w_str_escape.go#L161: 				fail = fail || w.twoBytes('\\', b)
		w_str_escape.go#L163: 				fail = fail || w.twoBytes('\\', 'n')
		w_str_escape.go#L165: 				fail = fail || w.twoBytes('\\', 'r')
		w_str_escape.go#L167: 				fail = fail || w.twoBytes('\\', 't')
		w_str_escape.go#L174: 				fail = fail || w.rawStr(`\u00`) || w.twoBytes(hexChars[b>>4], hexChars[b&0xF])